  :root {
    --ccf-navy:  #07122b;
    --ccf-card:  #0d1f4a;
    --ccf-gold:  #FFD700;
    --ccf-muted: rgba(255,255,255,0.58);
  }
  .ccf { background: var(--ccf-navy); border-top: 3px solid var(--ccf-gold); font-family: 'Inter', sans-serif; color: #fff; padding: 56px 0 0; }
  .ccf-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .ccf-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
  @media (max-width: 991px) { .ccf-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media (max-width: 575px) { .ccf-grid { grid-template-columns: 1fr; gap: 28px; } }
  .ccf-label { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ccf-gold); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
  .ccf-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,215,0,.2); }
  .ccf-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .ccf-logo-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ccf-gold); display: none; }
  .ccf-logo-fallback { width: 56px; height: 56px; min-width: 56px; border-radius: 50%; background: var(--ccf-card); border: 2px solid var(--ccf-gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--ccf-gold); }
  .ccf-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
  .ccf-motto { font-size: 12px; color: var(--ccf-gold); font-style: italic; margin-bottom: 9px; opacity: .9; }
  .ccf-approved { display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,215,0,.1); color: var(--ccf-gold); border: 1px solid rgba(255,215,0,.3); border-radius: 20px; padding: 2px 10px; margin-bottom: 10px; }
  .ccf-mission { font-size: 12.5px; color: var(--ccf-muted); line-height: 1.65; margin-bottom: 18px; }
  .ccf-socials { display: flex; gap: 10px; }
  .ccf-social { width: 34px; height: 34px; border-radius: 8px; background: var(--ccf-card); border: 1px solid rgba(255,215,0,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: 17px; text-decoration: none; transition: color .2s, border-color .2s, background .2s; }
  .ccf-social:hover { color: var(--ccf-gold); border-color: var(--ccf-gold); background: rgba(255,215,0,.08); }
  .ccf-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .ccf-links li a { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.65); text-decoration: none; padding: 3px 0; transition: color .2s; }
  .ccf-links li a i { color: var(--ccf-gold); font-size: 13px; opacity: .8; }
  .ccf-links li a:hover { color: var(--ccf-gold); }
  .ccf-contact { display: flex; flex-direction: column; gap: 14px; }
  .ccf-contact-row { display: flex; gap: 10px; align-items: flex-start; }
  .ccf-contact-row i { color: var(--ccf-gold); font-size: 15px; margin-top: 1px; min-width: 16px; }
  .ccf-contact-text { font-size: 12.5px; color: rgba(255,255,255,.65); line-height: 1.55; }
  .ccf-portal-btns { display: flex; flex-direction: column; gap: 9px; margin-bottom: 12px; }
  .ccf-btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 14px; border-radius: 8px; font-size: 12.5px; font-weight: 700; text-decoration: none; letter-spacing: .03em; border: 1px solid transparent; transition: opacity .2s; }
  .ccf-btn:hover { opacity: .75; }
  .ccf-btn-teacher { background: rgba(22,163,74,.15); color: #4ade80; border-color: rgba(74,222,128,.3); }
  .ccf-btn-student  { background: rgba(37,99,235,.15);  color: #93c5fd; border-color: rgba(147,197,253,.3); }
  .ccf-btn-admin    { background: rgba(255,215,0,.12);   color: var(--ccf-gold); border-color: rgba(255,215,0,.35); }
  .ccf-portal-note { font-size: 10.5px; color: rgba(255,255,255,.4); text-align: center; letter-spacing: .02em; }
  .ccf-bar { border-top: 1px solid rgba(255,215,0,.18); padding: 16px 24px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
  .ccf-copy, .ccf-credit { font-size: 11.5px; color: rgba(255,255,255,.42); }
  .ccf-credit span { color: var(--ccf-gold); font-weight: 700; }
  @media (max-width: 575px) { .ccf-bar { justify-content: center; text-align: center; } }
  /* Scroll reveal */
  .ccf-fade { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
  .ccf-fade.ccf-in { opacity: 1; transform: translateY(0); }
  .ccf-d1 { transition-delay: .06s; } .ccf-d2 { transition-delay: .14s; }
  .ccf-d3 { transition-delay: .22s; } .ccf-d4 { transition-delay: .30s; }
  .ccf-d5 { transition-delay: .38s; }
  @media (prefers-reduced-motion: reduce) { .ccf-fade { opacity: 1; transform: none; transition: none; } }
