:root{
  --brand:#FFD233;       /* Yellow */
  --ink:#6D6E71;         /* Gray */
  --bg:#0f1216;          /* Dark background for hero */
  --paper:#ffffff;
  --muted:#A7A9AC;
  --card:#151a21;
  --border:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--paper);color:#1b1f24;font:16px/1.55 Inter, system-ui, -apple-system, Segoe UI, Arial}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:1120px;margin:auto;padding:64px 20px}

/* Header */
.nav{
  position:fixed;inset:0 0 auto;background:linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
  display:flex;align-items:center;justify-content:space-between;padding:12px 20px;z-index:50;backdrop-filter:saturate(140%) blur(6px)
}
.brand{display:flex;align-items:center;gap:10px;color:#fff}
.brand img{height:34px;width:auto}
.brand-name{font-weight:600}
.nav-links{display:flex;gap:22px;align-items:center}
.nav a{color:#e9edf3}
.nav a.active{color:var(--brand)}
.btn{display:inline-flex;align-items:center;gap:8px;background:var(--brand);color:#111;padding:12px 18px;border-radius:12px;font-weight:600;border:1px solid transparent}
.btn--ghost{background:transparent;border-color:var(--brand);color:#fff}
.btn--sm{padding:8px 12px;border-radius:10px}
.menu{display:none;background:transparent;border:0;color:#fff;font-size:22px}

/* Hero */
.hero{position:relative;min-height:86vh;display:grid;place-items:center}
.hero-media{position:absolute;inset:0;overflow:clip;background:var(--bg)}
.hero picture img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.hero .lqip{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:blur(20px);transform:scale(1.1);opacity:.35}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 50%, rgba(0,0,0,.55))}
.hero-content{position:relative;text-align:left;color:#fff;max-width:1120px;width:100%;padding:0 20px}
.hero h1{font:700 44px/1.1 "Playfair Display", serif;margin:0 0 12px}
.hero p{color:#e5e9f0;margin:0 0 24px}
.cta{display:flex;gap:12px;flex-wrap:wrap}

/* Sections */
.section-title{font:700 32px/1.2 "Playfair Display", serif;margin:0 0 16px;color:#101317}
.cards{display:grid;gap:16px;grid-template-columns:repeat(5,1fr)}
.card{background:#fff;border:1px solid #eef0f3;border-radius:14px;padding:18px}
.card h3{font:600 18px/1.3 Inter;margin:0 0 6px}
.card p{color:#4b5563;margin:0}

.proof{background:#fafafa;border-top:1px solid #eee;border-bottom:1px solid #eee}
.proof-inner{display:flex;align-items:center;justify-content:center}
.proof p{margin:0;color:#4b5563}

.how .steps{display:grid;gap:16px;grid-template-columns:repeat(3,1fr)}
.step{background:#fff;border:1px solid #eef0f3;border-radius:14px;padding:20px}
.step-num{display:inline-grid;place-items:center;width:28px;height:28px;border-radius:50%;background:var(--brand);color:#111;font-weight:700;margin-bottom:8px}

.why .ticks{display:grid;gap:10px;margin:0;padding-left:20px}
.why .ticks li{margin:0}

.cta-banner{background:var(--card);color:#fff;padding:28px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.cta-banner .wrap{display:flex;align-items:center;justify-content:space-between;gap:16px}
.cta-banner p{margin:0;font-weight:600}

.contact{text-align:center}
.contact p{margin:.25rem 0}

/* Footer (Dark) */
.footer--dark {
  background: #0f1216;
  color: #e9edf3;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
}
.footer--dark a { color: #e9edf3; }
.footer--dark .muted,
.footer--dark .muted a { color: #a7afb9; }
.footer--dark .muted a:hover { color: #fff; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer .left { display:flex; align-items:center; gap:10px; }
.footer .left img { height: 32px; }
.footer .name { margin:0; font-weight:700; }
.footer .right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; text-align:right; }

/* Socials in dark footer */
.footer--dark .socials { margin: 0; }
.footer--dark .socials a {
  color: #c8ced6;                 /* icon color via currentColor */
  background: #151a21;
  border: 1px solid rgba(255,255,255,.08);
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items:center; justify-content:center;
  transition: .2s;
}
.footer--dark .socials a:hover {
  color: #111;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 6px 14px rgba(0,0,0,.28);
}
.footer--dark .socials svg { width: 18px; height: 18px; fill: currentColor; }

.copy {
  margin: 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  color: #9aa3ae;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0f1216;
}

/* Floating WhatsApp button */
.whatsapp{
  position:fixed;right:16px;bottom:16px;width:56px;height:56px;border-radius:14px;background:var(--brand);
  color:#111;display:grid;place-items:center;font-weight:800;box-shadow:0 12px 24px rgba(0,0,0,.35);z-index:60
}

/* Responsive */
@media (max-width:1100px){
  .cards{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:820px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .how .steps{grid-template-columns:1fr}
}
@media (max-width:720px){
  .nav-links{display:none}
  .menu{display:block}
  .hero h1{font-size:36px}
  .footer-inner { flex-direction:column; align-items:center; text-align:center; }
  .footer .right { align-items:center; text-align:center; }
  .socials { justify-content:center; }
}

/* Safety: avoid horizontal scroll and big bottom gap */
body { overflow-x: hidden; }

/* --- iOS extra-scroll fix & safe-area adjustments --- */
html, body { height: 100%; }
body { overscroll-behavior: contain; } /* stop rubber-banding after end */

/* Make sure the last content doesn't add padding after footer */
.wrap:last-of-type { padding-bottom: 0; }

/* Keep the footer's own copy line tight */
.copy { margin: 0 !important; padding-bottom: 10px; }

/* WA floating button: respect iOS bottom safe area so the browser doesn't create extra scroll */
:root { --safe: env(safe-area-inset-bottom, 0px); }
.whatsapp { bottom: calc(16px + var(--safe)); }

/* Clip any potential paint overflow at the very end */
footer.footer { contain: paint; }

/* About page hero */
.page-hero {
  padding: 120px 0 40px;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 50%, rgba(0,0,0,0)),
              url("../assets/hero_large_1600x900.webp") center/cover no-repeat;
  color: #fff;
}
.page-hero h1 { font:700 42px/1.1 "Playfair Display", serif; margin:0 0 10px; }
.page-hero .lede { color:#e9edf3; max-width:800px; margin:0; }

/* Mission & Vision */
.mv .mv-grid{display:grid;gap:16px;grid-template-columns:repeat(2,1fr)}
.mv .mv-card{background:#fff;border:1px solid #eef0f3;border-radius:14px;padding:22px}
.mv .mv-card h2{font:700 26px/1.2 "Playfair Display", serif;margin:0 0 8px}
.mv .mv-card p{margin:0;color:#4b5563}
@media (max-width:780px){ .mv .mv-grid{grid-template-columns:1fr} }

/* Leadership */
.leaders .leader{display:grid;grid-template-columns:120px 1fr;gap:16px;align-items:start;
  background:#fff;border:1px solid #eef0f3;border-radius:14px;padding:16px;margin-bottom:14px}
.leader-photo{width:120px;height:120px;object-fit:cover;border-radius:12px}
.leader-name{margin:0 0 4px;font:700 20px/1.2 "Playfair Display", serif;color:#101317}
.leader-title{margin:0 0 6px;color:#6b7280}
.leader-msg summary{cursor:pointer;color:#111;font-weight:600;list-style:none}
.leader-msg summary::-webkit-details-marker{display:none}
.leader-msg summary::after{content:"↘";margin-left:8px;opacity:.5;transition:transform .2s}
.leader-msg[open] summary::after{transform:rotate(90deg)}
.leader-msg .msg{margin-top:10px;color:#4b5563}
@media (max-width:620px){
  .leaders .leader{grid-template-columns:72px 1fr}
  .leader-photo{width:72px;height:72px;border-radius:10px}
}
.contact-location .map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}