/* =====================================================
   WiCoDeP — Design System v3
   A coastal-editorial identity: navy, coral, teal, sand.
   Fraunces (display serif) + Montserrat (body/UI)
===================================================== */

:root {
  --serif: 'Fraunces', serif;
  --sans: 'Montserrat', sans-serif;

  --navy: #0B2545;
  --navy-rgb: 11, 37, 69;
  --navy-light: #133560;
  --coral: #FF6B4A;
  --coral-rgb: 255, 107, 74;
  --coral-dark: #E8532F;
  --teal: #0FA3A3;
  --teal-rgb: 15, 163, 163;
  --sand: #FFF8F0;
  --sand-dark: #FBEEE0;
  --paper: #FFFFFF;
  --ink: #1C2126;
  --ink-soft: #566072;
  --line: #E7E1D6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.wc {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--sand);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  max-width: 100%;
}

.wc h1, .wc h2, .wc h3, .wc h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}
.wc h5, .wc h6 { font-family: var(--sans); color: var(--navy); font-weight: 700; margin: 0; }

.wc a { text-decoration: none; color: inherit; transition: all .25s ease; }
.wc img { max-width: 100%; display: block; }
.wc ul { margin: 0; padding: 0; list-style: none; }
.wc button { font-family: var(--sans); }

.wrap { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px; font-family: var(--sans);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--coral); }

.sect { padding: 100px 0; position: relative; }
.sect--tight { padding: 60px 0; }
.sect--navy { background: var(--navy); color: rgba(255,255,255,.72); }
.sect--navy h2, .sect--navy h3 { color: #fff; }
.sect--paper { background: var(--paper); }
@media (max-width: 767px) { .sect { padding: 60px 0; } }

/* ---------- diagonal divider ---------- */
.slant-top { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); }
.slant-bottom { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 6px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .03em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer; transition: all .25s ease; white-space: nowrap;
  font-family: var(--sans);
}
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); color: #fff; transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0c8a8a; color: #fff; }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; border-color: #fff; color: var(--navy); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 17px 38px; font-size: 14.5px; }
@media (max-width: 400px) {
	.btn-lg { padding: 15px 24px; font-size: 13px; }
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-wrap { white-space: normal; flex-wrap: wrap; row-gap: 4px; line-height: 1.4; text-align: center; }
@media (max-width: 480px) {
	.btn-wrap { font-size: 12px; padding: 15px 16px; gap: 6px; }
}

/* ---------- Top bar + Nav ---------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.75); font-size: 12.5px; font-weight: 500; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; padding: 9px 0; }
.topbar__info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__info i { color: var(--coral); }
.topbar__info a { color: inherit; }
.topbar__info a:hover { color: var(--coral); }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__quicklinks { display: flex; align-items: center; gap: 18px; padding-right: 18px; border-right: 1px solid rgba(255,255,255,.18); }
.topbar__quicklinks a { color: rgba(255,255,255,.75); font-weight: 700; font-size: 12.5px; letter-spacing: .02em; }
.topbar__quicklinks a:hover { color: var(--coral); }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { color: rgba(255,255,255,.75); }
.topbar__social a:hover { color: var(--coral); }
@media (max-width: 767px) { .topbar { display: none; } }

.nav-wrap { background: rgba(255,248,240,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 600; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 14px; flex-wrap: nowrap; }
.nav__logo { flex-shrink: 0; min-width: 0; }
.nav__logo img { height: 50px; width: auto; max-width: 100%; }

@media (max-width: 767px) {
	.nav { gap: 10px; }
	.nav__logo img { height: 44px; }
}
@media (max-width: 480px) {
	.nav { gap: 8px; }
	.nav__logo img { height: 40px; }
}
@media (max-width: 360px) {
	.nav__logo img { height: 36px; }
}

.nav__list { display: none; align-items: center; gap: 2px; }
.nav__list > li { position: relative; }
.nav__list > li > a { display: block; padding: 10px 15px; font-weight: 600; font-size: 14px; color: var(--navy); border-radius: 6px; }
.nav__list > li > a:hover, .nav__list > li.active > a { color: var(--coral); }
.nav__caret { font-size: 10px; margin-left: 5px; opacity: .55; transition: transform .25s ease; position: relative; top: -1px; }
.nav__list > li:hover .nav__caret { transform: rotateX(180deg); opacity: .9; }
.nav__list .drop { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; padding: 10px; border-radius: 10px; box-shadow: 0 22px 50px rgba(11,37,69,.16); border: 1px solid var(--line); }
.nav__list li:hover .drop { display: block; }
.nav__list .drop li a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 13.5px; font-weight: 500; color: var(--navy); }
.nav__list .drop li a:hover { background: var(--sand); color: var(--coral); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.burger { display: inline-flex; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 8px; background: var(--sand-dark); cursor: pointer; border: none; }
.burger span { width: 18px; height: 2px; background: var(--navy); display: block; }

@media (max-width: 767px) {
	.nav__actions { gap: 6px; }
	.nav__actions > a.btn { padding: 8px 10px; gap: 0; border-radius: 50%; width: 34px; height: 34px; justify-content: center; }
	.nav__actions > a.btn span { display: none; }
	.nav__actions > a.btn i { font-size: 13px; }
	.burger { width: 38px; height: 38px; }
}
@media (max-width: 360px) {
	.nav__actions > a.btn { width: 30px; height: 30px; padding: 6px; }
	.nav__actions > a.btn i { font-size: 12px; }
	.burger { width: 34px; height: 34px; }
	.burger span { width: 16px; }
}

@media (min-width: 1180px) { .nav__list { display: flex; } .burger { display: none; } }

.mnav { position: fixed; inset: 0; z-index: 900; visibility: hidden; opacity: 0; transition: all .3s ease; }
.mnav.open { visibility: visible; opacity: 1; }
.mnav__overlay { position: absolute; inset: 0; background: rgba(11,37,69,.6); }
.mnav__panel { position: absolute; top: 0; right: 0; bottom: 0; width: 86%; max-width: 360px; background: var(--navy); padding: 26px; transform: translateX(100%); transition: transform .35s ease; overflow-y: auto; }
.mnav.open .mnav__panel { transform: translateX(0); }
.mnav__close { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; margin-left: auto; margin-bottom: 22px; cursor: pointer; border: none; }
.mnav__list li a { display: block; padding: 13px 4px; color: #fff; font-weight: 700; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mnav__cta { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Hero (split, asymmetric) ---------- */
.hero { position: relative; background: var(--navy); overflow: hidden; padding: 90px 0 60px; }
.hero::before { content: ''; position: absolute; top: -140px; right: -160px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--coral-rgb),.22), transparent 70%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 46px; align-items: center; }
@media (min-width: 992px) { .hero__grid { grid-template-columns: 1fr 0.92fr; gap: 30px; } }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: var(--coral); padding: 8px 16px; border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 26px; }
.hero__title { color: #fff; font-family: var(--serif); font-size: 38px; font-weight: 600; line-height: 1.1; margin-bottom: 22px; }
.hero__title em { font-style: italic; color: var(--coral); }
@media (min-width: 768px) { .hero__title { font-size: 56px; } }
.hero__text { color: rgba(255,255,255,.72); font-size: 17px; max-width: 500px; margin-bottom: 32px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__visual img { width: 100%; border-radius: 8px; object-fit: cover; aspect-ratio: 4/4.4; }
.hero__visual::after { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--coral); border-radius: 8px; z-index: -1; }
.hero__badge { position: absolute; bottom: -24px; left: -24px; background: #fff; color: var(--navy); padding: 18px 22px; border-radius: 8px; box-shadow: 0 20px 44px rgba(0,0,0,.18); max-width: 210px; }
.hero__badge b { display: block; font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--coral); }
.hero__badge span { font-size: 12px; font-weight: 600; }
@media (max-width: 767px) { .hero__badge { left: 0; bottom: -18px; } }

/* ---------- Page header ---------- */
.pagehead { position: relative; background: var(--navy); padding: 64px 0; overflow: hidden; }
.pagehead::before { content: ''; position: absolute; top: -90px; right: -90px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--teal-rgb),.28), transparent 70%); }
.pagehead__crumb { display: flex; gap: 8px; color: rgba(255,255,255,.5); font-size: 13px; font-weight: 600; margin-bottom: 12px; position: relative; z-index: 2; }
.pagehead__crumb a { color: rgba(255,255,255,.78); }
.pagehead__crumb a:hover { color: var(--coral); }
.pagehead h1 { color: #fff; font-size: 32px; position: relative; z-index: 2; }
@media (min-width: 768px) { .pagehead h1 { font-size: 42px; } }
.pagehead p { color: rgba(255,255,255,.65); max-width: 560px; margin-top: 14px; position: relative; z-index: 2; }

/* ---------- Titles ---------- */
.stitle { margin-bottom: 44px; max-width: 640px; }
.stitle.center { margin-left: auto; margin-right: auto; text-align: center; }
.stitle h2 { font-size: 28px; }
@media (min-width: 768px) { .stitle h2 { font-size: 36px; } }
.stitle p { margin-top: 14px; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Grids ---------- */
.g { display: grid; gap: 26px; }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
.g4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .g2, .g4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .g3 { grid-template-columns: repeat(3, 1fr); } .g4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Program cards (bento) ---------- */
.pcard { background: var(--paper); border-radius: 14px; padding: 32px 28px; border: 1px solid var(--line); transition: all .3s ease; height: 100%; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,37,69,.1); border-color: transparent; }
.pcard__icon { width: 54px; height: 54px; border-radius: 12px; background: var(--sand-dark); color: var(--coral); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.pcard h3 { font-size: 19px; margin-bottom: 10px; font-family: var(--sans); font-weight: 700; color: var(--navy); }
.pcard p { font-size: 14px; color: var(--ink-soft); margin: 0; flex: 1; }
.pcard__tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.pcard__foot { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 400px) {
	.pcard__foot { flex-direction: column; align-items: stretch; }
	.pcard__foot > a.btn { text-align: center; justify-content: center; }
}
.pcard__link { font-size: 13px; font-weight: 700; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; }

/* progress mini-bar for program cards */
.mini-bar { height: 6px; border-radius: 100px; background: var(--sand-dark); overflow: hidden; margin: 14px 0 6px; }
.mini-bar__fill { height: 100%; background: linear-gradient(90deg, var(--coral), var(--teal)); border-radius: 100px; }
.mini-meta { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--ink-soft); font-weight: 600; }

/* ---------- Checklist ---------- */
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--navy); font-size: 14.5px; margin-bottom: 14px; }
.check-list li i { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(var(--coral-rgb),.12); color: var(--coral); display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: center; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats__item b { display: block; font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--coral); }
.stats__item span { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.6); }
@media (max-width: 480px) {
	.stats { gap: 18px 16px; }
	.stats__item b { font-size: 26px; }
	.stats__item span { font-size: 11px; }
}

/* ---------- Team cards + modal ---------- */
.team-card { text-align: left; background: var(--paper); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; transition: all .3s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,37,69,.12); }
.team-card__img { width: 100%; aspect-ratio: 4/3.4; overflow: hidden; background: var(--sand-dark); position: relative; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-card__img img { transform: scale(1.06); }
.team-card__view { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,37,69,.75), transparent 55%); display: flex; align-items: flex-end; justify-content: flex-end; padding: 14px; opacity: 0; transition: opacity .3s ease; }
.team-card:hover .team-card__view { opacity: 1; }
.team-card__view span { background: var(--coral); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.team-card__body { padding: 18px 20px; }
.team-card__body h4 { font-size: 16.5px; font-family: var(--sans); font-weight: 700; margin-bottom: 3px; }
.team-card__body span { font-size: 12.5px; font-weight: 600; color: var(--coral); }
.team-card__body p { font-size: 13px; color: var(--ink-soft); margin: 10px 0 0; }

.modal-overlay { position: fixed; inset: 0; background: rgba(11,37,69,.65); z-index: 950; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: 16px; max-width: 640px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; background: var(--sand-dark); color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; z-index: 2; }
.modal-head { display: flex; gap: 20px; padding: 30px 30px 20px; align-items: center; flex-wrap: wrap; }
.modal-head img { width: 100px; height: 100px; border-radius: 12px; object-fit: cover; }
.modal-head h3 { font-size: 22px; margin-bottom: 4px; }
.modal-head span { color: var(--coral); font-weight: 700; font-size: 13.5px; }
.modal-body { padding: 0 30px 30px; }
.modal-body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.modal-contact { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.modal-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--sand); padding: 9px 16px; border-radius: 100px; }
.modal-contact a:hover { background: var(--coral); color: #fff; }

/* ---------- Gallery ---------- */
.gitem { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gitem:hover img { transform: scale(1.08); }
.gitem__ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,37,69,.88), transparent 60%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 16px; opacity: 0; transition: opacity .3s ease; }
.gitem:hover .gitem__ov { opacity: 1; }
.gitem__ov span { color: #fff; font-weight: 700; font-size: 13.5px; }
.gitem__ov small { color: var(--coral); font-weight: 700; font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 46px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1.5px solid var(--line); font-weight: 700; font-size: 13.5px; color: var(--navy); background: #fff; }
.pagination a:hover { border-color: var(--coral); color: var(--coral); }
.pagination .current { background: var(--navy); border-color: var(--navy); color: #fff; }
.pagination .disabled { opacity: .4; pointer-events: none; }

/* ---------- Timeline ---------- */
.tline { position: relative; padding-left: 30px; border-left: 3px solid var(--line); }
.tline__item { position: relative; padding-bottom: 38px; }
.tline__item:last-child { padding-bottom: 0; }
.tline__dot { position: absolute; left: -40px; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--coral); border: 4px solid var(--sand); box-shadow: 0 0 0 2px var(--coral); }
.tline__year { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); margin-bottom: 6px; }
.tline__item h4 { font-size: 18px; margin-bottom: 8px; font-family: var(--sans); font-weight: 700; color: var(--navy); }
.tline__item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.tline__item.done .tline__dot { background: var(--teal); box-shadow: 0 0 0 2px var(--teal); }

/* ---------- Partners ---------- */
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; text-align: center; transition: all .3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; }
.partner-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(11,37,69,.1); border-color: transparent; }
.partner-card img { max-height: 56px; width: auto; margin-bottom: 16px; filter: grayscale(1); opacity: .8; transition: all .3s ease; }
.partner-card:hover img { filter: none; opacity: 1; }
.partner-card h5 { font-size: 14px; margin-bottom: 6px; }
.partner-card p { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; flex: 1; }
.partner-card a.visit { font-size: 12px; font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Values ---------- */
.value-card { background: var(--sand-dark); border-radius: 14px; padding: 24px; text-align: center; height: 100%; }
.value-card i { font-size: 24px; color: var(--coral); margin-bottom: 12px; display: block; }
.value-card h5 { font-size: 13.5px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--coral); border-radius: 20px; padding: 54px 40px; text-align: center; }
.cta-band h2 { color: #fff; font-size: 26px; margin-bottom: 14px; }
@media (min-width: 768px) { .cta-band h2 { font-size: 32px; } }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 28px; }
@media (max-width: 480px) {
	.cta-band { padding: 38px 22px; border-radius: 16px; }
	.cta-band h2 { font-size: 22px; }
}

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); background: #fff; border-radius: 8px; padding: 13px 15px;
  font-family: var(--sans); font-size: 14px; color: var(--ink); transition: all .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(var(--coral-rgb),.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field.error input, .field.error select, .field.error textarea { border-color: #d9364a; }
.field small.err { color: #d9364a; font-weight: 600; font-size: 11.5px; display: block; margin-top: 6px; }

.alert { border-radius: 10px; padding: 14px 18px; font-size: 13.5px; font-weight: 600; margin-bottom: 22px; }
.alert-success { background: rgba(15,163,163,.1); border: 1px solid var(--teal); color: #0a6b6b; }
.alert-error { background: rgba(217,54,74,.08); border: 1px solid #d9364a; color: #a11a2c; }
.alert-info { background: rgba(11,37,69,.06); border: 1px solid var(--navy); color: var(--navy); }

/* ---------- Contact cards ---------- */
.ccard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; height: 100%; }
.ccard i { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: var(--sand-dark); color: var(--coral); display: flex; align-items: center; justify-content: center; }
.ccard h5 { font-size: 14.5px; margin-bottom: 6px; }
.ccard p, .ccard a { font-size: 13.5px; color: var(--ink-soft); display: block; }
.ccard a:hover { color: var(--coral); }

/* ---------- Donation ---------- */
.donate-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 992px) {
	.donate-grid { grid-template-columns: 1.15fr .85fr; gap: 50px; }
	.donate-grid.ratio-50-50 { grid-template-columns: 1fr 1fr; }
	.donate-grid.ratio-60-40 { grid-template-columns: 1.2fr .8fr; }
	.donate-grid.ratio-55-45 { grid-template-columns: 1.1fr .9fr; }
	.donate-grid.ratio-65-35 { grid-template-columns: 1.3fr .7fr; }
	.donate-grid.ratio-53-47 { grid-template-columns: 1fr .9fr; }
}
.donate-panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 36px; }
@media (max-width: 480px) { .donate-panel { padding: 24px 18px; } }

.tabs { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.tab { flex: 1; min-width: 120px; padding: 13px 10px; text-align: center; border-radius: 8px; border: 1.5px solid var(--line); font-weight: 700; font-size: 13px; cursor: pointer; color: var(--ink-soft); background: #fff; }
.tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.amount-btn { padding: 15px 8px; border-radius: 8px; border: 1.5px solid var(--line); text-align: center; font-weight: 700; font-size: 14.5px; color: var(--navy); cursor: pointer; background: #fff; }
.amount-btn.active, .amount-btn:hover { border-color: var(--coral); background: rgba(var(--coral-rgb),.08); color: var(--coral-dark); }
@media (max-width: 380px) {
	.amounts { grid-template-columns: repeat(2, 1fr); }
	.amount-btn { font-size: 13px; padding: 13px 6px; }
}

.freq-row { display: flex; gap: 10px; margin-bottom: 22px; }
.freq-btn { flex: 1; padding: 10px; border-radius: 100px; border: 1.5px solid var(--line); text-align: center; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); cursor: pointer; background: var(--sand); }
.freq-btn.active { background: var(--coral); border-color: var(--coral); color: #fff; }

.method-panel { display: none; }
.method-panel.active { display: block; }
.detail-box { background: var(--sand); border-radius: 12px; padding: 16px 18px; margin-bottom: 16px; }
.detail-box .row-line { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
.detail-box .row-line:last-child { border-bottom: none; }
.detail-box .row-line b { color: var(--navy); }

.impact-card { background: var(--navy); border-radius: 18px; padding: 30px 26px; color: rgba(255,255,255,.78); margin-bottom: 22px; }
.impact-card h3 { color: #fff; font-size: 19px; margin-bottom: 16px; font-family: var(--sans); font-weight: 700;}
.impact-row { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.impact-row:last-child { border-bottom: none; }
.impact-row b { color: var(--coral); font-size: 14px; min-width: 55px; }
.impact-row span { font-size: 13.5px; }

.progress-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.progress-card h4 { font-size: 15px; margin-bottom: 14px; font-family: var(--sans); font-weight: 700; }
.progress-bar { height: 9px; border-radius: 100px; background: var(--sand-dark); overflow: hidden; margin-bottom: 9px; }
.progress-bar__fill { height: 100%; background: linear-gradient(90deg, var(--coral), var(--teal)); border-radius: 100px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); }
.progress-meta b { color: var(--navy); }

/* ---------- Testimonials ---------- */
.testi-card { background: #fff; border-radius: 16px; padding: 30px 26px; border: 1px solid var(--line); height: 100%; }
.testi-card .stars { color: var(--coral); margin-bottom: 14px; font-size: 13px; }
.testi-card p.msg { font-size: 14.5px; color: var(--ink-soft); font-style: italic; margin-bottom: 20px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .who .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sand-dark); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.testi-card .who b { display: block; font-size: 14px; color: var(--navy); }
.testi-card .who span { font-size: 12px; color: var(--coral); font-weight: 600; }

.star-input { display: flex; gap: 6px; }
.star-input i { font-size: 22px; color: var(--line); cursor: pointer; }
.star-input i.active { color: var(--coral); }

/* ---------- Careers ---------- */
.job-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; transition: all .3s ease; }
.job-card:hover { box-shadow: 0 20px 44px rgba(11,37,69,.08); border-color: transparent; }
.job-card h3 { font-size: 18px; font-family: var(--sans); font-weight: 700; margin-bottom: 8px; }
.job-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.job-tag { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--sand-dark); color: var(--navy); padding: 6px 12px; border-radius: 100px; }
.job-tag.deadline { background: rgba(var(--coral-rgb),.12); color: var(--coral-dark); }

/* ---------- Project ---------- */
.project-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); transition: all .3s ease; height: 100%; display: flex; flex-direction: column; }
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,37,69,.1); }
.project-card__img { aspect-ratio: 4/2.6; overflow: hidden; position: relative; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; }
.project-status { position: absolute; top: 14px; left: 14px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; border-radius: 100px; background: #fff; color: var(--navy); }
.project-status.ongoing { background: var(--teal); color: #fff; }
.project-status.completed { background: var(--navy); color: #fff; }
.project-status.upcoming { background: var(--coral); color: #fff; }
.project-card__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.project-card__body h3 { font-size: 18px; margin-bottom: 10px; font-family: var(--sans); font-weight: 700; }
.project-card__body p { font-size: 13.5px; color: var(--ink-soft); flex: 1; margin-bottom: 14px; }
.project-meta { font-size: 12px; color: var(--teal); font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }

/* ---------- Footer ---------- */
.wc-footer { background: var(--navy); color: rgba(255,255,255,.62); }
.wc-footer .top { padding: 70px 0 38px; }
.wc-footer .brand img { height: 50px; margin-bottom: 18px; }
.wc-footer .brand p { font-size: 13.5px; max-width: 320px; line-height: 1.8; }
.wc-footer .social { display: flex; gap: 12px; margin-top: 20px; }
.wc-footer .social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.wc-footer .social a:hover { background: var(--coral); }
.wc-footer h5 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; }
.wc-footer .flinks li { margin-bottom: 12px; }
.wc-footer .flinks a { font-size: 14px; }
.wc-footer .flinks a:hover { color: var(--coral); }
.wc-footer .fcontact li { display: flex; gap: 10px; margin-bottom: 13px; font-size: 14px; }
.wc-footer .fcontact i { color: var(--coral); margin-top: 3px; }
.wc-footer .bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.wc-footer .bottom .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
.wc-footer .bottom a { color: rgba(255,255,255,.8); font-weight: 600; }

.scroll-top { position: fixed; right: 22px; bottom: 22px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s ease; z-index: 400; cursor: pointer; border: none; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
