:root {
  --font-dm-sans: "DM Sans";
  --font-playfair: "Playfair Display";
  --ink: #163a30;
  --ink-deep: #0c2a22;
  --green: #197a5d;
  --green-bright: #2ca77a;
  --mint: #e9f6ef;
  --lime: #dff27d;
  --cream: #fbf8ef;
  --orange: #f19a5b;
  --paper: #ffffff;
  --muted: #66766f;
  --line: #dce7e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: var(--font-dm-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

.section-shell,
.nav-shell,
.announcement-inner,
.hero-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.announcement {
  color: #dbece5;
  background: var(--ink-deep);
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
}

.announcement p {
  display: flex;
  gap: 9px;
  margin: 0;
}

.announcement p span {
  color: var(--lime);
}

.announcement a {
  color: var(--lime);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(22, 58, 48, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
}

.brand {
  width: max-content;
  max-height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 70px;
  height: 70px;
  display: block;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--ink-deep);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 5px;
  color: #75847e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--green);
  border-radius: 50% 50% 50% 12px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 16px;
  font-weight: 800;
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-name strong {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 18px;
}

.brand-name small {
  margin-top: 2px;
  color: #75847e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.header-cta,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 100px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-cta {
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 10px 22px rgba(25, 122, 93, 0.18);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 22%, rgba(223, 242, 125, 0.36), transparent 25%),
    linear-gradient(115deg, #f8f6ea 0%, #eef8f1 53%, #dcefe7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -330px;
  right: -160px;
  border: 1px solid rgba(22, 58, 48, 0.12);
  border-radius: 50%;
}

.hero-shell {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 74px;
  align-items: center;
  padding-block: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker-avatars {
  display: flex;
}

.kicker-avatars i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -7px;
  color: var(--ink-deep);
  background: var(--lime);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-style: normal;
  font-size: 10px;
}

.kicker-avatars i:first-child {
  margin-left: 0;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
blockquote {
  font-family: var(--font-playfair), Georgia, serif;
}

h1 {
  max-width: 610px;
  margin-bottom: 27px;
  font-size: clamp(56px, 5.6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}

h1 em {
  color: var(--green);
  font-weight: 500;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button.primary {
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(25, 122, 93, 0.22);
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
}

.play {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  color: var(--green);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  color: #66766f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-trust b {
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  inset: 0 12px 32px 36px;
  overflow: hidden;
  border-radius: 48% 48% 16% 16% / 34% 34% 12% 12%;
  box-shadow: 0 34px 70px rgba(20, 65, 51, 0.2);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 42, 32, 0.25), transparent 42%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.photo-sticker {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 28px;
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(8deg);
}

.photo-sticker b {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 20px;
}

.photo-sticker small {
  max-width: 55px;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
}

.hero-donation-card,
.hero-note {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(20, 65, 51, 0.18);
}

.hero-donation-card {
  left: 0;
  bottom: 0;
  min-width: 236px;
  padding: 20px 22px;
  border-radius: 18px;
}

.hero-donation-card > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-donation-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 6px rgba(44, 167, 122, 0.12);
}

.hero-donation-card strong {
  display: block;
  margin: 10px 0 2px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 25px;
}

.hero-donation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.hero-note {
  right: -20px;
  bottom: 76px;
  width: 180px;
  display: flex;
  gap: 9px;
  padding: 16px 17px;
  border-radius: 14px;
}

.hero-note span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 0.8;
}

.hero-note p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
}

.impact-strip {
  color: var(--paper);
  background: var(--ink-deep);
}

.impact-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 0.65fr) 1.4fr;
  align-items: center;
}

.impact-grid > div {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.impact-grid > div + div {
  padding-left: 30px;
}

.impact-grid strong,
.impact-grid span {
  display: block;
}

.impact-grid strong {
  color: var(--lime);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 28px;
}

.impact-grid span {
  margin-top: 3px;
  color: #b8c9c3;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-grid > p {
  max-width: 390px;
  margin: 0 0 0 auto;
  color: #a9bbb4;
  font-size: 12px;
  line-height: 1.7;
}

.categories,
.about,
.story,
.final-cta {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-heading {
  margin-bottom: 46px;
}

.compact-heading,
.program-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 90px;
  align-items: end;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

.eyebrow.light {
  color: var(--lime);
}

.section-heading h2,
.about-copy h2,
.transparency h2,
.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.compact-heading > p,
.program-heading > p,
.about-copy > p,
.transparency-copy > p,
.story-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 16px;
  transition:
    transform 180ms ease,
    border 180ms ease,
    background 180ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  background: var(--paper);
  border-color: var(--line);
}

.category-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
  font-size: 19px;
}

.category-card span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.category-card strong {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 17px;
}

.category-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.category-card i {
  color: var(--green);
  font-style: normal;
}

.programs {
  padding: 108px 0 120px;
  background: #f3f8f5;
}

.program-heading {
  grid-template-columns: 1fr auto;
}

.outline-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(22, 58, 48, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(22, 58, 48, 0.07);
  transition: transform 200ms ease;
}

.program-card:hover {
  transform: translateY(-8px);
}

.program-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(8, 35, 27, 0.35));
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card:nth-child(2) .program-image img {
  object-position: center 44%;
}

.program-image > span {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  padding: 7px 11px;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-image button,
.save-program {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.save-program {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.program-body {
  padding: 24px;
}

.verified {
  margin-bottom: 9px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.verified span {
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 8px;
}

.program-card h3 {
  min-height: 54px;
  margin-bottom: 20px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 23px;
  line-height: 1.15;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  background: #e1ebe6;
  border-radius: 100px;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  border-radius: inherit;
}

.program-numbers {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}

.program-numbers p {
  margin: 0;
}

.program-numbers p:last-child {
  text-align: right;
}

.program-numbers small,
.program-numbers strong {
  display: block;
}

.program-numbers small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.program-numbers strong {
  font-size: 12px;
}

.program-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.program-footer span {
  color: var(--muted);
}

.program-footer a {
  color: var(--green);
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 540px;
}

.about-image > img {
  width: calc(100% - 38px);
  height: calc(100% - 38px);
  object-fit: cover;
  border-radius: 40px 40px 120px 40px;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 38px 0 0 38px;
  z-index: -1;
  border: 1px solid #a9c8ba;
  border-radius: 40px 40px 120px 40px;
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 190px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: var(--lime);
  border-radius: 16px;
}

.about-badge > span {
  font-size: 25px;
}

.about-badge p {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
}

.about-badge strong {
  display: block;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 16px;
}

.about-copy > p {
  max-width: 620px;
  margin: 24px 0 30px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-values > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-values span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.about-values strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-deep);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 15px;
}

.transparency {
  padding: 112px 0;
  color: var(--paper);
  background: var(--ink-deep);
}

.transparency-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
  align-items: center;
}

.transparency h2 {
  margin-bottom: 24px;
}

.transparency-copy > p {
  max-width: 510px;
  margin-bottom: 30px;
  color: #a9bbb4;
}

.button.lime {
  color: var(--ink-deep);
  background: var(--lime);
}

.flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow li {
  min-height: 160px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.flow > li > span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.flow strong {
  display: block;
  margin: 7px 0 9px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 17px;
}

.flow p {
  margin: 0;
  color: #9db0a8;
  font-size: 10px;
  line-height: 1.6;
}

.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
  align-items: center;
}

.story-copy blockquote {
  margin-bottom: 24px;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.story-copy > p {
  margin-bottom: 25px;
}

.story-photo {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 110px 24px 24px 24px;
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, rgba(8, 35, 27, 0.58));
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo span {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 23px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 110px;
  padding-inline: 70px;
  background: var(--lime);
  border-radius: 28px;
}

.final-cta h2 {
  max-width: 800px;
}

.button.dark {
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--ink-deep);
}

footer {
  padding-top: 76px;
  color: var(--paper);
  background: #071f19;
}

footer .brand-mark {
  color: var(--ink-deep);
  background: var(--lime);
}

footer .brand-logo-footer {
  width: 90px;
  height: 90px;
  padding: 7px;
  background: var(--paper);
  border-radius: 22px;
}

footer .brand-copy strong {
  color: var(--paper);
}

footer .brand-copy small {
  color: #83968e;
}

footer .brand-name small {
  color: #83968e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 90px;
  padding-bottom: 64px;
}

.footer-grid > div:first-child > p {
  max-width: 420px;
  margin: 24px 0 0;
  color: #8fa29a;
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  color: #9bada6;
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6f847b;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: #25d366;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(10, 50, 38, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 50, 38, 0.32);
}

.whatsapp img {
  width: 31px;
  height: 31px;
  display: block;
}

.page-hero {
  padding: 74px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(223, 242, 125, 0.38), transparent 27%),
    linear-gradient(115deg, #f8f6ea 0%, #eef8f1 53%, #dcefe7 100%);
}

.page-hero-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: center;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb::before {
  content: "←";
  margin-right: 8px;
  color: var(--green);
}

.page-hero h1 {
  max-width: 670px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5vw, 72px);
}

.page-hero-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.page-hero-image {
  position: relative;
  height: 440px;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38% 38% 18px 18px / 30% 30% 18px 18px;
  box-shadow: 0 30px 60px rgba(20, 65, 51, 0.18);
}

.page-hero-image > span {
  position: absolute;
  right: -18px;
  bottom: 26px;
  padding: 15px 18px;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.soft-section {
  padding: 110px 0;
  background: #f3f8f5;
}

.profile-story,
.report-intro,
.program-promise,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.profile-story h2,
.report-intro h2,
.program-promise h2,
.contact-layout h2,
.impact-feature h2,
.donation-panel h2,
.method-layout h2,
.contact-banner h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.long-copy p,
.muted-copy,
.report-intro > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.long-copy p:last-child {
  margin-bottom: 0;
}

.centered-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow::before {
  display: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.values-grid.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.values-grid article > span,
.contact-grid article > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.values-grid h3,
.contact-grid h3,
.report-grid h3 {
  margin: 45px 0 12px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 23px;
}

.values-grid p,
.contact-grid p,
.report-grid li,
.metric-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.horizontal-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.horizontal-steps li {
  position: relative;
  padding: 34px 24px 0 0;
}

.horizontal-steps li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border: 2px solid var(--green);
  border-radius: 50%;
}

.horizontal-steps span,
.horizontal-steps strong {
  display: block;
}

.horizontal-steps span {
  margin-bottom: 25px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.horizontal-steps strong {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 18px;
}

.horizontal-steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.check-list span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 9px;
}

.metrics-section {
  padding: 42px 0;
  color: var(--paper);
  background: var(--ink-deep);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-grid article {
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metric-grid article:first-child {
  padding-left: 0;
}

.metric-grid article:last-child {
  border-right: 0;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: var(--lime);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 34px;
}

.metric-grid span {
  margin: 6px 0 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-grid p {
  color: #94a9a1;
}

.impact-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.impact-photo {
  height: 500px;
  overflow: hidden;
  border-radius: 26px 120px 26px 26px;
}

.impact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-feature blockquote {
  margin: 28px 0 22px;
  color: var(--green);
  font-size: 25px;
  line-height: 1.35;
}

.report-intro {
  align-items: end;
  margin-bottom: 48px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.report-grid article {
  padding: 28px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 20px;
}

.report-status {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--green);
  background: var(--mint);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-grid article > p {
  margin: 30px 0 5px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-grid h3 {
  min-height: 56px;
  margin: 0 0 20px;
}

.report-grid ul {
  min-height: 96px;
  margin: 0 0 24px;
  padding-left: 18px;
}

.report-grid a,
.contact-grid a {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.contact-layout {
  align-items: start;
}

.contact-layout > div:first-child {
  position: sticky;
  top: 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--cream);
  border-radius: 18px;
}

.contact-grid h3 {
  margin: 38px 0 10px;
}

.contact-grid p {
  min-height: 58px;
  margin-bottom: 18px;
}

.contact-banner {
  padding: 72px 0;
  color: var(--paper);
  background: var(--ink-deep);
}

.contact-banner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-banner h2 {
  max-width: 720px;
}

.donation-hero {
  padding: 100px 0 120px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 242, 125, 0.5), transparent 30%),
    linear-gradient(115deg, #f8f6ea, #e4f3ec);
}

.donation-hero h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.donation-hero > div > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.donation-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 34px;
  align-items: start;
}

.donation-panel,
.donation-summary {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.step-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--green);
  background: var(--mint);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 34px;
}

.donation-types a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 12px;
  padding: 18px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 14px;
}

.donation-types a:hover {
  border-color: var(--green);
}

.donation-types span {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
}

.donation-types strong {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 17px;
}

.donation-types small {
  color: var(--muted);
  font-size: 9px;
}

.donation-summary {
  color: var(--paper);
  background: var(--ink-deep);
  border: 0;
}

.donation-summary .eyebrow {
  color: var(--lime);
}

.donation-summary h3 {
  margin-bottom: 24px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 28px;
}

.donation-summary .check-list li {
  color: #a9bbb4;
  border-color: rgba(255, 255, 255, 0.12);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px 80px;
  align-items: start;
}

.method-cards {
  display: grid;
  gap: 12px;
}

.method-cards article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.method-cards article > span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.method-cards strong {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 17px;
}

.method-cards p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.wide-button {
  grid-column: 2;
  justify-self: start;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
    background: var(--green);
    border-radius: 50%;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: var(--paper);
  }

  .mobile-menu nav {
    position: absolute;
    top: 56px;
    right: 0;
    width: 250px;
    display: flex;
    flex-direction: column;
    padding: 17px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(16, 58, 47, 0.18);
  }

  .mobile-menu nav a {
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu nav a:last-child {
    margin-top: 8px;
    color: var(--paper);
    background: var(--green);
    border: 0;
    border-radius: 9px;
    text-align: center;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-block: 28px;
  }

  .impact-grid > p {
    grid-column: 1 / -1;
    max-width: none;
    margin: 22px 0 0;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .program-image {
    height: 100%;
    min-height: 330px;
  }

  .about,
  .story,
  .transparency-shell,
  .page-hero-shell,
  .profile-story,
  .report-intro,
  .program-promise,
  .contact-layout,
  .impact-feature,
  .method-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .values-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .report-grid article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }

  .report-grid article > p,
  .report-grid h3,
  .report-grid ul {
    grid-column: 1;
  }

  .report-grid a {
    grid-column: 2;
    grid-row: 2 / 5;
    align-self: center;
    justify-self: end;
  }

  .donation-layout {
    grid-template-columns: 1fr;
  }

  .donation-summary {
    order: -1;
  }

  .wide-button {
    grid-column: 1;
  }

  .contact-layout > div:first-child {
    position: static;
  }

  .about-image {
    max-width: 650px;
  }

  .story-photo {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .nav-shell,
  .announcement-inner,
  .hero-shell {
    width: min(100% - 30px, 1180px);
  }

  .announcement-inner {
    min-height: 34px;
    justify-content: center;
    font-size: 8px;
  }

  .announcement a {
    display: none;
  }

  .site-header {
    height: 76px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand {
    gap: 7px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    margin-top: 3px;
    font-size: 6px;
    letter-spacing: 0.08em;
  }

  footer .brand-logo-footer {
    width: 76px;
    height: 76px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .hero-shell {
    gap: 45px;
    padding-block: 58px 72px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-trust {
    gap: 10px;
    justify-content: space-between;
    font-size: 7px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-photo {
    inset: 0 0 40px 0;
    border-radius: 40% 40% 12% 12% / 28% 28% 10% 10%;
  }

  .photo-sticker {
    width: 74px;
    height: 74px;
    right: 18px;
  }

  .hero-donation-card {
    min-width: 210px;
    padding: 16px 18px;
  }

  .hero-note {
    display: none;
  }

  .impact-grid {
    gap: 0;
  }

  .impact-grid > div {
    padding-right: 12px;
  }

  .impact-grid > div + div {
    padding-left: 12px;
  }

  .impact-grid strong {
    font-size: 23px;
  }

  .impact-grid span {
    font-size: 7px;
  }

  .categories,
  .about,
  .story,
  .final-cta,
  .programs,
  .transparency,
  .content-section,
  .soft-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .page-hero {
    padding: 56px 0 66px;
  }

  .page-hero-shell {
    gap: 42px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .page-hero-image {
    height: 350px;
  }

  .page-hero-image > span {
    right: 12px;
  }

  .compact-heading,
  .program-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .about-copy h2,
  .transparency h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 90px;
  }

  .program-card {
    display: block;
  }

  .program-image {
    height: 220px;
    min-height: 0;
  }

  .about-image {
    height: 420px;
  }

  .about-values,
  .flow,
  .values-grid,
  .values-grid.three-columns,
  .metric-grid,
  .horizontal-steps,
  .contact-grid,
  .donation-types {
    grid-template-columns: 1fr;
  }

  .horizontal-steps {
    gap: 20px;
    border-top: 0;
  }

  .horizontal-steps li {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .horizontal-steps li::before {
    display: none;
  }

  .metric-grid article,
  .metric-grid article:first-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metric-grid article:last-child {
    border-bottom: 0;
  }

  .report-grid article {
    display: block;
  }

  .report-grid h3,
  .report-grid ul {
    min-height: 0;
  }

  .impact-photo {
    height: 360px;
  }

  .contact-banner > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .donation-hero {
    padding: 70px 0 80px;
  }

  .donation-panel,
  .donation-summary {
    padding: 24px;
  }

  .flow li {
    min-height: 130px;
  }

  .story {
    gap: 36px;
  }

  .story-photo {
    height: 330px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 80px;
    padding-inline: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }

  .whatsapp {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

/* Xendit donation checkout */
.payment-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 12% 22%, rgba(223, 242, 125, 0.52), transparent 26%),
    radial-gradient(circle at 88% 70%, rgba(98, 203, 166, 0.18), transparent 26%),
    linear-gradient(115deg, #fbf9ef 0%, #f1f8f3 52%, #e4f3ee 100%);
}

.payment-hero::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(25, 122, 93, 0.14);
  border-radius: 50%;
}

.payment-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 90px;
  align-items: center;
}

.payment-hero h1 {
  max-width: 730px;
  margin: 14px 0 20px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.payment-hero-inner > div:first-child > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.payment-trust {
  display: grid;
  gap: 13px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(25, 122, 93, 0.14);
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(12, 42, 34, 0.08);
  backdrop-filter: blur(16px);
}

.payment-trust > div {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 13px 14px;
  background: var(--paper);
  border-radius: 13px;
}

.payment-trust > div > strong {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
}

.payment-trust b,
.payment-trust small {
  display: block;
}

.payment-trust b {
  font-size: 12px;
}

.payment-trust small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.sandbox-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: #705c00;
  background: #fff6c8;
  border: 1px solid #f0dc78;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sandbox-badge i {
  width: 7px;
  height: 7px;
  background: #e1b900;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(225, 185, 0, 0.13);
}

.payment-section {
  padding: 72px 0 110px;
  background: #f5f8f6;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-step {
  min-width: 0;
  margin: 0;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(12, 42, 34, 0.035);
}

.checkout-step legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0;
}

.checkout-step legend > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.checkout-step legend small,
.checkout-step legend strong {
  display: block;
}

.checkout-step legend small {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-step legend strong {
  margin-top: 3px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 21px;
}

.payment-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.payment-choice {
  cursor: pointer;
}

.payment-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-choice > span {
  position: relative;
  min-height: 104px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 17px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.payment-choice > span > i {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.payment-choice strong,
.payment-choice small {
  display: block;
}

.payment-choice strong {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 17px;
}

.payment-choice small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

.payment-choice input:checked + span {
  background: var(--mint);
  border-color: var(--green);
  transform: translateY(-2px);
}

.payment-choice input:checked + span > i {
  display: inline-flex;
}

.payment-choice input:focus-visible + span {
  outline: 3px solid rgba(44, 167, 122, 0.25);
  outline-offset: 2px;
}

.field-label {
  display: block;
  margin: 24px 0 8px;
  color: #344d45;
  font-size: 10px;
  font-weight: 700;
}

.field-label small {
  color: var(--muted);
  font-weight: 500;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "⌄";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--green);
  pointer-events: none;
  transform: translateY(-55%);
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form input[type="number"],
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  color: var(--ink-deep);
  background: #fbfcfb;
  border: 1px solid #cfddd6;
  border-radius: 12px;
  font: inherit;
  font-size: 12px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form input[type="number"],
.checkout-form select {
  height: 50px;
  padding: 0 15px;
}

.checkout-form select {
  padding-right: 44px;
  appearance: none;
}

.checkout-form textarea {
  min-height: 94px;
  padding: 14px 15px;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(44, 167, 122, 0.11);
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 24px;
}

.amount-presets button {
  min-height: 43px;
  padding: 8px;
  color: var(--green);
  background: var(--paper);
  border: 1px solid #bad5ca;
  border-radius: 11px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.amount-presets button:hover,
.amount-presets button.active {
  color: var(--paper);
  background: var(--green);
  border-color: var(--green);
}

.money-field {
  display: grid;
  grid-template-columns: 54px 1fr;
}

.money-field > span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--mint);
  border: 1px solid #cfddd6;
  border-right: 0;
  border-radius: 12px 0 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.money-field input[type="number"] {
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-weight: 700;
}

.field-help {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
}

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

.full-field {
  grid-column: 1 / -1;
}

.anonymous-check {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
}

.anonymous-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.payment-alert {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 13px;
  font-size: 10px;
}

.payment-alert-error {
  color: #7a2b22;
  background: #fff0ed;
  border: 1px solid #f0c5bd;
}

.checkout-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 100% 0%, rgba(223, 242, 125, 0.16), transparent 30%),
    var(--ink-deep);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(12, 42, 34, 0.18);
}

.xendit-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.xendit-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #263d8f;
  background: #e7edff;
  border-radius: 12px;
  font-size: 21px;
  font-weight: 900;
}

.xendit-heading small,
.xendit-heading strong {
  display: block;
}

.xendit-heading small {
  color: #91a69e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xendit-heading strong {
  margin-top: 3px;
  font-size: 13px;
}

.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.summary-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.summary-line span {
  color: #9fb0aa;
}

.summary-line strong {
  max-width: 190px;
  text-align: right;
}

.summary-total {
  padding: 22px 0 24px;
}

.summary-total span {
  color: #b4c2bd;
  font-size: 10px;
}

.summary-total strong {
  color: var(--lime);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 28px;
}

.channel-preview {
  padding: 16px;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
}

.channel-preview > small {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.channel-preview > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.channel-preview span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 9px 3px;
  color: var(--green);
  background: var(--mint);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 900;
}

.channel-preview span small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 6px;
  font-weight: 600;
}

.xendit-button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 19px;
  color: var(--ink-deep);
  background: var(--lime);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(223, 242, 125, 0.14);
}

.xendit-button:hover {
  background: #e8fa91;
}

.secure-note,
.sandbox-note {
  margin: 14px 2px 0;
  color: #8fa29a;
  font-size: 8px;
  line-height: 1.6;
}

.secure-note {
  display: flex;
  gap: 8px;
}

.secure-note > span {
  color: var(--lime);
}

.sandbox-note {
  padding: 10px 11px;
  color: #e9dda3;
  background: rgba(255, 226, 89, 0.09);
  border: 1px solid rgba(255, 226, 89, 0.14);
  border-radius: 9px;
}

.payment-status-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 70px 24px 100px;
  background:
    radial-gradient(circle at 20% 10%, rgba(223, 242, 125, 0.42), transparent 27%),
    linear-gradient(135deg, #fbf9ef, #e6f4ef);
}

.payment-status-card {
  width: min(610px, 100%);
  padding: 44px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(25, 122, 93, 0.15);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(12, 42, 34, 0.12);
}

.status-icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 0 0 10px rgba(44, 167, 122, 0.11);
}

.status-pending .status-icon,
.status-cancelled .status-icon {
  color: #6a5800;
  background: var(--lime);
}

.status-expired .status-icon,
.status-failed .status-icon {
  background: #c76a5e;
  box-shadow: 0 0 0 10px rgba(199, 106, 94, 0.1);
}

.payment-status-card h1 {
  margin: 10px 0 13px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.status-copy {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.status-receipt {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 20px;
  text-align: left;
  background: #f6faf8;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.status-receipt > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}

.status-receipt span {
  color: var(--muted);
}

.status-receipt strong {
  max-width: 310px;
  overflow-wrap: anywhere;
  text-align: right;
}

.status-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.status-home-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink-deep);
  font-size: 10px;
  font-weight: 700;
}

.status-refresh {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 8px;
}

@media (max-width: 980px) {
  .payment-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .payment-trust {
    max-width: 620px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .payment-hero {
    padding: 55px 0 60px;
  }

  .payment-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .payment-hero-inner > div:first-child > p:last-child {
    font-size: 13px;
  }

  .payment-section {
    padding: 28px 0 80px;
  }

  .checkout-grid {
    width: min(100% - 24px, 1180px);
  }

  .checkout-step,
  .checkout-summary {
    padding: 22px;
    border-radius: 17px;
  }

  .payment-type-grid,
  .amount-presets {
    grid-template-columns: 1fr 1fr;
  }

  .payment-choice > span {
    min-height: 92px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-group,
  .full-field {
    grid-column: 1;
  }

  .summary-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .payment-status-card {
    padding: 32px 22px;
  }

  .status-receipt > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .status-receipt strong {
    max-width: 100%;
    text-align: left;
  }

  .status-actions {
    flex-direction: column;
  }
}

/* Brand, social footer, and motion polish — August 2026 */
::selection {
  color: var(--ink-deep);
  background: var(--lime);
}

body {
  overflow-x: hidden;
}

.site-header {
  transition: height 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  height: 78px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 14px 40px rgba(12, 42, 34, 0.08);
}

.brand-logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 8px 13px rgba(12, 42, 34, 0.13));
  transform-origin: center;
  transition: width 240ms ease, height 240ms ease, transform 240ms ease, filter 240ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 56px;
  height: 56px;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 11px 17px rgba(12, 42, 34, 0.2));
  transform: translateY(-2px) scale(1.035);
}

.brand-copy strong {
  font-size: 19px;
  letter-spacing: -0.015em;
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 36%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-20deg);
  transition: left 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.header-cta:hover::before,
.button:hover::before {
  left: 125%;
}

.hero-photo {
  --parallax-x: 0px;
  --parallax-y: 0px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 260ms ease;
  will-change: transform;
}

.hero-photo img,
.page-hero-image img,
.about-image > img,
.story-photo img {
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.hero-visual:hover .hero-photo img,
.page-hero-image:hover img,
.about-image:hover > img,
.story-photo:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.category-card,
.vision-card,
.mission-card,
.status-column,
.report-card {
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.category-card:hover,
.vision-card:hover,
.mission-card:hover,
.status-column:hover,
.report-card:hover {
  border-color: rgba(25, 122, 93, 0.24);
  box-shadow: 0 22px 50px rgba(12, 42, 34, 0.1);
  transform: translateY(-6px);
}

footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(44, 167, 122, 0.16), transparent 28%),
    radial-gradient(circle at 90% 85%, rgba(223, 242, 125, 0.08), transparent 22%),
    #071f19;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--lime), var(--green-bright));
}

footer .brand-logo-footer {
  width: 78px;
  height: 78px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(330px, 1.45fr) repeat(3, minmax(110px, auto));
  gap: 66px;
}

.footer-brand-column > p {
  max-width: 490px;
}

.footer-social {
  margin-top: 28px;
}

.footer-social-title {
  margin: 0 0 13px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.footer-social-grid a {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  color: #dbe9e3;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.footer-social-grid a:hover,
.footer-social-grid a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(223, 242, 125, 0.35);
  outline: none;
  transform: translateY(-3px);
}

.footer-social-grid a > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.footer-social-grid strong {
  font-size: 11px;
  line-height: 1.2;
}

.footer-social-grid small {
  margin-top: 3px;
  overflow: hidden;
  color: #81978e;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, #a53bd1, #f05d5d, #f2a43c);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.social-facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.social-youtube {
  background: #ff0033;
  font-size: 13px;
}

.social-tiktok {
  background: #101417;
  box-shadow: inset 2px 0 #25f4ee, inset -2px 0 #fe2c55;
  font-size: 17px;
}

.motion-ready [data-reveal] {
  opacity: 0;
}

.motion-ready [data-reveal].is-visible {
  animation: site-reveal 760ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes site-reveal {
  from {
    opacity: 0;
    translate: 0 26px;
    scale: 0.985;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 30px;
  }

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-social-grid {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .site-header.is-scrolled {
    height: 70px;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    max-width: 150px;
    font-size: 14px;
    white-space: normal;
  }

  footer .brand-logo-footer {
    width: 68px;
    height: 68px;
  }

  .footer-social-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    animation: none !important;
    translate: none;
    scale: 1;
  }

  .hero-photo {
    transform: none !important;
  }
}

/* Profile, news, updates, and readability refresh — August 2026 */
body {
  font-size: 16px;
  line-height: 1.65;
}

.announcement-inner {
  font-size: 12px;
}

.desktop-nav {
  align-items: center;
  gap: 22px;
}

.desktop-nav > a,
.nav-dropdown-trigger {
  font-size: 14px;
}

.header-cta,
.button {
  font-size: 14px;
}

.eyebrow {
  font-size: 12px;
}

.compact-heading > p,
.program-heading > p,
.about-copy > p,
.transparency-copy > p,
.story-copy > p,
.long-copy p,
.muted-copy,
.report-intro > p {
  font-size: 16px;
}

.outline-link,
.text-link,
.video-link {
  font-size: 13px;
}

.footer-grid > div:first-child > p {
  font-size: 14px;
}

.footer-links a {
  font-size: 13px;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: 28px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger > span {
  color: var(--green);
  font-size: 15px;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger > span,
.nav-dropdown:focus-within .nav-dropdown-trigger > span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 70;
  width: 310px;
  display: grid;
  gap: 4px;
  padding: 13px;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(12, 42, 34, 0.16);
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.desktop-nav .nav-dropdown-menu a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 13px;
  border-radius: 11px;
  font-size: 13px;
}

.desktop-nav .nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--green);
  background: var(--mint);
  outline: none;
}

.nav-dropdown-menu span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.mobile-menu nav {
  max-height: min(76vh, 620px);
  overflow-y: auto;
}

.mobile-menu nav .mobile-submenu-link {
  padding: 8px 8px 8px 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.achievement-section {
  padding: 105px 0 115px;
  background:
    radial-gradient(circle at 50% 45%, rgba(223, 242, 125, 0.28), transparent 28%),
    linear-gradient(135deg, #f6f9f7, #eef6f2);
}

.achievement-section .centered-heading > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.achievement-grid article {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 122, 93, 0.1);
  border-radius: 20px 20px 46px 20px;
  box-shadow: 0 14px 34px rgba(12, 42, 34, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.achievement-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(12, 42, 34, 0.12);
}

.achievement-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--green);
  background: var(--mint);
  border-radius: 50%;
  font-size: 19px;
}

.achievement-grid strong {
  color: var(--ink-deep);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.achievement-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profile-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(circle at 14% 26%, rgba(223, 242, 125, 0.43), transparent 28%),
    linear-gradient(112deg, #fbf8eb, #e9f5ef 58%, #dcefe7);
}

.profile-hero::after,
.news-hero::after,
.updates-hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  top: -300px;
  right: -100px;
  border: 1px solid rgba(25, 122, 93, 0.15);
  border-radius: 50%;
}

.profile-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 100px;
  align-items: end;
}

.profile-hero h1 {
  max-width: 820px;
  margin: 20px 0 28px;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.98;
}

.profile-hero-grid > div > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.profile-hero-note {
  padding: 30px;
  color: var(--paper);
  background: var(--ink-deep);
  border-radius: 24px 24px 70px 24px;
  box-shadow: 0 25px 55px rgba(12, 42, 34, 0.18);
}

.profile-hero-note > span,
.profile-hero-note > strong {
  display: block;
}

.profile-hero-note > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-hero-note > strong {
  margin: 8px 0 20px;
  color: var(--lime);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 64px;
  line-height: 1;
}

.profile-hero-note p {
  margin: 0;
  color: #bbcbc5;
  font-size: 14px;
  line-height: 1.75;
}

.profile-index {
  position: sticky;
  top: 88px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.profile-index > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.profile-index a {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.profile-index a:first-child {
  border-left: 1px solid var(--line);
}

.profile-index a:hover {
  color: var(--green);
  background: var(--mint);
}

.profile-index span,
.profile-section-label > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

#latar-belakang,
#visi-misi,
#nilai-inti,
#tagline-motto {
  scroll-margin-top: 175px;
}

.profile-background {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 80px;
}

.profile-section-label {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.profile-section-label .eyebrow {
  margin-bottom: 0;
}

.profile-prose h2 {
  max-width: 900px;
  margin-bottom: 42px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.06;
}

.profile-prose p {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.profile-vision-section {
  padding: 110px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 20%, rgba(223, 242, 125, 0.1), transparent 25%),
    var(--ink-deep);
}

.light-label > span {
  color: var(--lime);
}

.vision-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-top: 38px;
}

.vision-card,
.mission-card {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
}

.vision-card {
  background: var(--green);
}

.mission-card {
  background: rgba(255, 255, 255, 0.055);
}

.vision-card small,
.mission-card small,
.manifesto-grid small {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-card h2 {
  margin: 28px 0 25px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
}

.vision-card p {
  margin: 0;
  color: #d8ebe4;
  font-size: 16px;
  line-height: 1.8;
}

.mission-card ol {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mission-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  color: #c5d6d0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  line-height: 1.65;
}

.mission-card li:last-child {
  border-bottom: 0;
}

.mission-card li span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.profile-values-heading,
.news-heading,
.updates-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.profile-values-heading > p,
.news-heading > p,
.updates-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.core-values-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.core-values-grid article:hover {
  transform: translateY(-6px);
  background: var(--paper);
  border-color: var(--line);
}

.core-values-grid article > span,
.core-values-grid article > small {
  display: block;
}

.core-values-grid article > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.core-values-grid article > small {
  margin-top: 46px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.core-values-grid h3 {
  margin: 7px 0 14px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 25px;
}

.core-values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.profile-manifesto {
  padding: 110px 0;
  color: var(--paper);
  background: var(--green);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 45px;
}

.manifesto-grid > div + div {
  padding-left: 80px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.manifesto-grid blockquote {
  margin: 22px 0 0;
  color: var(--paper);
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.12;
}

.news-hero,
.updates-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(120deg, #f8f7ec, #e8f5ef);
}

.news-hero-grid,
.updates-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.news-hero h1,
.updates-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.98;
}

.news-hero-grid > div:last-child > p,
.updates-hero-grid > div:first-child > p:last-child {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.updates-hero-grid > div:first-child > p:last-child {
  margin-top: 32px;
}

.draft-notice {
  display: inline-flex;
  padding: 8px 13px;
  color: #755d00;
  background: #fff4b8;
  border: 1px solid #ebd86d;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
}

.news-draft-section {
  padding-top: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.news-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(12, 42, 34, 0.06);
}

.news-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.news-card-image {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.news-card-featured .news-card-image {
  height: 100%;
  min-height: 390px;
}

.news-card-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(12, 42, 34, 0.5));
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

.news-card-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 11px;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card-body {
  padding: 30px;
}

.news-card-featured .news-card-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 45px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-meta time {
  color: var(--muted);
  font-weight: 600;
}

.news-card h2 {
  margin: 18px 0 14px;
  font-size: 31px;
  line-height: 1.14;
}

.news-card-featured h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.news-card-body > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.news-read-more {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.breadcrumb {
  gap: 10px;
}

.breadcrumb a:hover {
  color: var(--green);
}

.updates-hero-grid {
  grid-template-columns: 1fr auto;
}

.release-badge {
  min-width: 260px;
  padding: 26px;
  color: var(--paper);
  background: var(--ink-deep);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(12, 42, 34, 0.15);
}

.release-badge span,
.release-badge strong,
.release-badge small {
  display: block;
}

.release-badge span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-badge strong {
  margin: 9px 0 5px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 25px;
}

.release-badge small {
  color: #9cb0a8;
  font-size: 11px;
}

.status-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.status-column {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(12, 42, 34, 0.05);
}

.status-column-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.status-column-heading > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.status-next .status-column-heading > span {
  color: var(--ink-deep);
  background: var(--lime);
}

.status-column-heading h3 {
  margin: 0 0 4px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 26px;
}

.status-column-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.status-column ul {
  display: grid;
  gap: 0;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.status-column li {
  position: relative;
  padding: 15px 0 15px 26px;
  border-bottom: 1px solid #edf2ef;
}

.status-column li:last-child {
  border-bottom: 0;
}

.status-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--green);
  font-weight: 900;
}

.status-next li::before {
  content: "•";
}

.status-column li strong,
.status-column li span {
  display: block;
}

.status-column li strong {
  font-size: 14px;
}

.status-column li span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.release-timeline {
  max-width: 920px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.release-timeline li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 45px;
  padding: 0 0 48px;
}

.release-timeline time {
  padding-top: 5px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.release-timeline li > div {
  position: relative;
  padding-left: 38px;
  border-left: 1px solid #bfd4ca;
}

.release-timeline li > div::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border: 2px solid var(--green);
  border-radius: 50%;
}

.release-timeline span {
  display: inline-flex;
  padding: 5px 8px;
  color: var(--green);
  background: var(--mint);
  border-radius: 100px;
  font-size: 9px;
  font-weight: 900;
}

.release-timeline h3 {
  margin: 12px 0 8px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 26px;
}

.release-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }
}

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

  .profile-hero-grid,
  .profile-background,
  .vision-grid,
  .profile-values-heading,
  .manifesto-grid,
  .news-hero-grid,
  .updates-hero-grid,
  .news-heading,
  .updates-heading,
  .status-board {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-grid > div + div {
    padding: 45px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .news-card-featured {
    display: block;
  }

  .news-card-featured .news-card-image {
    height: 360px;
    min-height: 0;
  }

  .release-badge {
    width: min(100%, 430px);
  }
}

@media (max-width: 680px) {
  .announcement-inner {
    font-size: 9px;
  }

  .profile-hero,
  .news-hero,
  .updates-hero {
    padding: 72px 0;
  }

  .profile-hero h1,
  .news-hero h1,
  .updates-hero h1 {
    font-size: clamp(45px, 13vw, 60px);
  }

  .profile-hero-grid > div > p:last-child,
  .news-hero-grid > div:last-child > p,
  .updates-hero-grid > div:first-child > p:last-child {
    font-size: 16px;
  }

  .profile-index {
    top: 76px;
    overflow-x: auto;
  }

  .profile-index > div {
    width: max-content;
    min-width: 100%;
  }

  .profile-index a {
    min-width: 155px;
    min-height: 56px;
    font-size: 12px;
  }

  .profile-prose h2 {
    font-size: 40px;
  }

  .profile-prose p {
    font-size: 15px;
  }

  .vision-card,
  .mission-card,
  .status-column {
    padding: 25px;
  }

  .core-values-grid,
  .achievement-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    grid-column: auto;
  }

  .news-card-image,
  .news-card-featured .news-card-image {
    height: 250px;
  }

  .news-card-body,
  .news-card-featured .news-card-body {
    padding: 24px;
  }

  .news-card h2,
  .news-card-featured h2 {
    font-size: 29px;
  }

  .release-timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .release-timeline li > div {
    padding-left: 28px;
  }
}

/* Original social marks and improved text readability — August 2026 */
.footer-social-title {
  margin-bottom: 16px;
  font-size: 12px;
}

.footer-social-grid {
  gap: 11px;
}

.footer-social-grid a {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 67px;
  padding: 12px 13px;
}

.footer-social-grid strong {
  font-size: 14px;
  line-height: 1.3;
}

.footer-social-grid small {
  margin-top: 4px;
  color: #a8bbb3;
  font-size: 10.5px;
  line-height: 1.35;
}

.social-icon,
.social-facebook,
.social-youtube,
.social-tiktok {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 0;
  background: transparent;
  border-radius: 11px;
  box-shadow: none;
}

.social-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.contact-grid article {
  min-height: 255px;
  padding: 30px;
}

.contact-grid article > span {
  font-size: 11.5px;
}

.contact-grid h3 {
  margin: 40px 0 12px;
  font-size: 29px;
  line-height: 1.2;
}

.contact-grid p {
  min-height: 66px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.7;
}

.contact-grid a {
  font-size: 12px;
}

@media (max-width: 680px) {
  .footer-social-title {
    font-size: 11px;
  }

  .footer-social-grid a {
    min-height: 64px;
  }

  .footer-social-grid strong {
    font-size: 13.5px;
  }

  .footer-social-grid small {
    font-size: 10.5px;
  }

  .contact-grid article {
    min-height: 235px;
    padding: 27px;
  }

  .contact-grid h3 {
    margin-top: 34px;
    font-size: 27px;
  }

  .contact-grid p {
    min-height: auto;
    font-size: 14px;
  }
}
