:root {
  --blue:#1d6fb8; --blue-light:#e6f1fa; --blue-dark:#15578f;
  --orange:#f5921e; --orange-light:#fef3e6;
  --green:#4caf50; --green-light:#eaf7eb;
  --red:#c0274a; --red-light:#fbe9ee;
  --radius:14px; --radius-lg:22px;
  --bg:#eef1f6; --surface:#fbfcfe;
  --text-dark:#2c3440; --text-muted:#66748a;
  --clay:0 14px 28px -8px rgba(48,62,98,.22),0 2px 6px rgba(48,62,98,.10),inset 0 1px 0 rgba(255,255,255,.6);
  --clay-sm:0 8px 16px -6px rgba(48,62,98,.18),0 1px 3px rgba(48,62,98,.08),inset 0 1px 0 rgba(255,255,255,.6);
  --clay-xs:0 4px 8px -3px rgba(48,62,98,.15),inset 0 1px 0 rgba(255,255,255,.6);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
body{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text-dark);font-size:15px;line-height:1.6;
  background-color:var(--bg);
  background-image:
    radial-gradient(circle at 8% 12%,rgba(245,146,30,.30) 0%,transparent 42%),
    radial-gradient(circle at 85% 8%,rgba(192,39,74,.20) 0%,transparent 40%),
    radial-gradient(circle at 12% 78%,rgba(76,175,80,.26) 0%,transparent 45%),
    radial-gradient(circle at 92% 85%,rgba(29,111,184,.28) 0%,transparent 45%);
  background-attachment:fixed;
}

/* NAV */
.navbar{background:var(--surface);box-shadow:0 4px 16px -6px rgba(48,62,98,.18);position:sticky;top:0;z-index:200}
.nav-inner{max-width:1240px;margin:0 auto;display:flex;align-items:center;gap:1.5rem;padding:0 1.5rem;height:72px}
.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav-logo-csj{height:48px;width:auto}
.nav-partners{display:flex;align-items:center;gap:12px;padding-left:1.25rem;border-left:1px solid rgba(48,62,98,.1);flex-shrink:0}
.nav-partners img{height:36px;width:auto;opacity:.85}
.nav-links{display:flex;align-items:center;gap:2px;flex:1}
.nav-link{padding:9px 13px;border-radius:var(--radius);font-size:13.5px;font-weight:600;color:var(--text-muted);transition:background .15s,color .15s}
.nav-link:hover{background:var(--bg);color:var(--text-dark)}
.nav-link.active{background:var(--blue-light);color:var(--blue)}
.nav-actions{display:flex;gap:8px;flex-shrink:0}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:6px;padding:10px 18px;border-radius:var(--radius);border:none;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit;transition:box-shadow .15s,transform .1s}
.btn-primary{background:var(--orange);color:white;box-shadow:0 10px 20px -6px rgba(245,146,30,.45),inset 0 1px 0 rgba(255,255,255,.3)}
.btn-primary:hover{box-shadow:0 14px 26px -6px rgba(245,146,30,.5);transform:translateY(-1px)}
.btn-ghost{background:var(--surface);color:var(--text-dark);box-shadow:var(--clay-xs)}
.btn-ghost:hover{box-shadow:var(--clay-sm)}
.btn-blue{background:var(--blue);color:white;box-shadow:0 10px 20px -6px rgba(29,111,184,.45),inset 0 1px 0 rgba(255,255,255,.3)}
.btn-blue:hover{box-shadow:0 14px 26px -6px rgba(29,111,184,.5);transform:translateY(-1px)}
.btn-lg{padding:13px 24px;font-size:14px}
.btn-full{width:100%;justify-content:center}

/* LAYOUT */
.wrap{max-width:1240px;margin:0 auto;padding:3rem 1.5rem}
.section-head{text-align:center;max-width:640px;margin:0 auto 2.5rem}
.eyebrow{font-size:12px;font-weight:700;color:var(--orange);text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px}
.section-head h2{font-size:28px;font-weight:800;margin-bottom:10px}
.section-head p{color:var(--text-muted);font-size:14.5px}

/* FORMS */
.form-group{margin-bottom:1rem}
.form-group label{display:block;font-size:12px;font-weight:700;color:var(--text-muted);margin-bottom:7px}
input[type=text],input[type=email],input[type=tel],input[type=password],select,textarea{
  width:100%;padding:12px 14px;border:1.5px solid rgba(48,62,98,.12);border-radius:var(--radius);
  font-size:14px;background:var(--surface);color:var(--text-dark);outline:none;font-family:inherit;
  box-shadow:0 4px 8px -3px rgba(48,62,98,.1);transition:border-color .15s,box-shadow .15s;
}
input:focus,select:focus,textarea:focus{border-color:var(--blue);box-shadow:0 4px 8px -3px rgba(48,62,98,.1),0 0 0 3px rgba(29,111,184,.15)}
textarea{resize:vertical;min-height:120px}

/* NEWS */
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.news-card{background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--clay-sm);overflow:hidden;transition:box-shadow .2s,transform .2s;cursor:pointer}
.news-card:hover{box-shadow:var(--clay);transform:translateY(-3px)}
.news-img{height:185px;overflow:hidden}
.news-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.news-card:hover .news-img img{transform:scale(1.04)}
.news-img-placeholder{height:185px;display:flex;align-items:center;justify-content:center;font-size:40px;background:var(--blue-light)}
.news-body{padding:1.1rem 1.25rem 1.4rem}
.news-date{font-size:11px;font-weight:700;color:var(--text-muted);text-transform:uppercase;letter-spacing:.03em;margin-bottom:6px}
.news-card h3{font-size:15px;font-weight:700;line-height:1.35;margin-bottom:6px}
.news-card p{font-size:13px;color:var(--text-muted);line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}

/* PILLARS */
.pillars-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.pillar-card{background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--clay-sm);padding:1.5rem 1.25rem;text-align:center}
.pillar-icon{width:54px;height:54px;margin:0 auto 1rem;border-radius:18px;display:flex;align-items:center;justify-content:center;font-size:26px;box-shadow:var(--clay-xs)}
.pillar-card h3{font-size:14px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;margin-bottom:8px}
.pillar-card p{font-size:13px;color:var(--text-muted);line-height:1.6}

/* GALLERY */
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.gallery-item{border-radius:var(--radius);overflow:hidden;box-shadow:var(--clay-xs);height:175px;cursor:pointer;transition:transform .2s,box-shadow .2s}
.gallery-item:hover{transform:scale(1.02);box-shadow:var(--clay-sm)}
.gallery-item img{width:100%;height:100%;object-fit:cover}

/* QUOTE */
.quote-band{background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--clay);padding:3rem;text-align:center;position:relative;overflow:hidden}
.quote-band::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 0% 0%,rgba(245,146,30,.10) 0%,transparent 50%),radial-gradient(circle at 100% 100%,rgba(29,111,184,.10) 0%,transparent 50%)}
.quote-band blockquote{font-size:21px;font-weight:700;line-height:1.5;max-width:720px;margin:0 auto 1rem;position:relative;z-index:1}
.quote-band blockquote::before{content:'"';font-size:60px;color:var(--orange);opacity:.3;position:absolute;top:-20px;left:-20px;line-height:1;font-family:Georgia,serif}
.quote-band cite{font-size:13px;color:var(--text-muted);font-weight:600;position:relative;z-index:1}

/* LINKS */
.links-row{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.link-card{background:var(--surface);border-radius:var(--radius-lg);box-shadow:var(--clay-sm);padding:1.4rem;display:flex;align-items:center;gap:14px;transition:box-shadow .15s,transform .15s}
.link-card:hover{box-shadow:var(--clay);transform:translateY(-2px)}
.link-icon{width:46px;height:46px;border-radius:14px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:20px;box-shadow:var(--clay-xs)}
.link-card h4{font-size:14px;font-weight:700;margin-bottom:3px}
.link-card p{font-size:12px;color:var(--text-muted)}

/* CTA */
.cta-band{background:linear-gradient(135deg,var(--blue) 0%,#2d8fd8 100%);border-radius:var(--radius-lg);box-shadow:0 20px 40px -10px rgba(29,111,184,.4);padding:3rem 2.5rem;text-align:center;color:white}
.cta-band h2{font-size:26px;font-weight:800;margin-bottom:10px}
.cta-band p{font-size:14.5px;opacity:.92;margin-bottom:1.75rem;max-width:500px;margin-left:auto;margin-right:auto}

/* HERO */
.hero{max-width:1240px;margin:0 auto;padding:3.5rem 1.5rem 3rem;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:var(--surface);box-shadow:var(--clay-xs);border-radius:20px;padding:6px 14px;font-size:12px;font-weight:700;color:var(--blue);margin-bottom:1.25rem}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--green)}
.hero h1{font-size:40px;font-weight:800;line-height:1.12;letter-spacing:-.01em;margin-bottom:1.25rem}
.hero h1 .accent{color:var(--blue)}
.hero .lede{font-size:15.5px;color:var(--text-muted);margin-bottom:1.75rem;line-height:1.65}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:2rem}
.hero-stats{display:flex;gap:2rem}
.hero-stat strong{font-size:26px;font-weight:800;color:var(--blue);display:block;line-height:1}
.hero-stat span{font-size:12px;color:var(--text-muted);font-weight:600;margin-top:3px;display:block}
.hero-photo{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--clay);height:420px;position:relative}
.hero-photo img{width:100%;height:100%;object-fit:cover}
.hero-badge{position:absolute;bottom:1.25rem;left:1.25rem;right:1.25rem;background:rgba(251,252,254,.96);border-radius:var(--radius);padding:12px 16px;display:flex;align-items:center;gap:12px;box-shadow:var(--clay-sm)}
.hero-badge .bi{font-size:22px}
.hero-badge strong{font-size:13.5px;font-weight:700;display:block}
.hero-badge span{font-size:12px;color:var(--text-muted)}

/* FOOTER */
footer{background:var(--surface);box-shadow:0 -4px 16px -8px rgba(48,62,98,.15);margin-top:2rem}
.footer-inner{max-width:1240px;margin:0 auto;padding:3rem 1.5rem 2rem;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem}
.footer-logos{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:1.25rem}
.footer-logos img{height:38px;width:auto;opacity:.82}
.footer-logos img:first-child{height:46px}
.footer-col h5{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.05em;color:var(--text-muted);margin-bottom:12px}
.footer-col a,.footer-col p{font-size:13px;color:var(--text-muted);display:block;margin-bottom:7px}
.footer-col a:hover{color:var(--blue)}
.footer-bottom{border-top:1px solid rgba(48,62,98,.08);max-width:1240px;margin:0 auto;padding:1.25rem 1.5rem;display:flex;justify-content:space-between;align-items:center;font-size:12px;color:var(--text-muted)}

/* FLASH MESSAGES */
.flash{padding:12px 16px;border-radius:var(--radius);font-size:13.5px;margin-bottom:1rem;font-weight:600}
.flash-success{background:var(--green-light);color:#2e7d32}
.flash-error{background:var(--red-light);color:var(--red)}

/* RESPONSIVE */
@media(max-width:900px){
  .nav-links,.nav-partners{display:none}
  .hero{grid-template-columns:1fr}
  .hero-photo{height:300px}
  .news-grid{grid-template-columns:repeat(2,1fr)}
  .pillars-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .links-row{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .hero h1{font-size:28px}
  .news-grid{grid-template-columns:1fr}
  .pillars-grid{grid-template-columns:1fr}
  .hero-stats{gap:1.25rem;flex-wrap:wrap}
  .footer-inner{grid-template-columns:1fr}
  .nav-actions .btn-ghost{display:none}
}
