/* ===== Staff Page: Hero ===== */
.staff-hero{
  background: linear-gradient(180deg, #f6f9ff 0%, #f6f9ff 70%, transparent 100%);
  padding: clamp(72px, 10vw, 130px) 1rem 56px;
  text-align: center;
}

.staff-hero_content h1{
  color:#223b8e;                 /* deep academy blue */
  font-weight: 800;
  font-size: clamp(2.2rem, 3.8vw, 4.2rem); /* nice & big like screenshot */
  margin: 0 0 16px;
  letter-spacing: .2px;
}

.staff-hero_content p{
  color:#4a5568;                 /* muted slate body */
  font-size: clamp(1.05rem, 1.1vw, 1.4rem);
  line-height: 1.75;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 .5rem;
}

/* small screen tweak */
@media (max-width: 480px){
  .staff-hero{ padding: 60px 1rem 44px; }
}

/* ===== Staff Cards ===== */
.staff-list{
  padding: 2.2rem 1rem 3.2rem;
  background:#fff;
}

.staff-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px){
  .staff-grid{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1180px){
  .staff-grid{ grid-template-columns: 1fr 1fr 1fr; }
}

.staff-card{
  background:#fff;
  border:1px solid #e6eaf5;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.staff-card:hover{
  transform: translateY(-3px);
  border-color: #e9d6d6;
  box-shadow: 0 16px 36px rgba(16,24,40,.10);
}

/* photo */
.staff-photo{
  display:grid; place-items:center;
  margin-top: 4px;
}
.staff-photo img{
  width: 120px; height: 120px; object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(16,24,40,.12);
}

/* text */
.staff-name{
  text-align:center;
  color:#c42e2e;                /* academy red */
  font-weight: 800;
  font-size: clamp(1.05rem, .9rem + .7vw, 1.45rem);
  margin: 6px 0 0;
}
.staff-role{
  text-align:center;
  color:#7a1a1a;                /* deeper red-brown for role */
  font-weight:700;
  margin: -2px 0 6px;
}
.staff-bio{
  color:#2f3a4a;
  line-height: 1.7;
  font-size: .98rem;
  margin: 2px 2px 4px;
}

/* email line */
.staff-email{
  display:inline-flex; align-items:center; gap:10px;
  color:#3a51d6; text-decoration:none; font-weight:600;
  margin-top: 2px;
}
.staff-email:hover{ text-decoration: underline; }

/* contact button (full width) */
.staff-contact{
  margin-top: 8px;
  width: 100%;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 14px;
  border: 2px solid #3a51d6;
  color:#3a51d6; background:#fff; text-decoration:none;
  border-radius: 10px; font-weight:800;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.staff-contact:hover{
  background:#eef1ff; transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(58,81,214,.18);
}

/* small screens */
@media (max-width: 520px){
  .staff-photo img{ width: 100px; height: 100px; }
}



/* ===== Join Our Amazing Team band ===== */
.careers-cta{
  /* scoped tokens */
  --bg:#2f3e86;
  --text:#eaf0ff;
  --muted:#dbe5ff;
  --peach:#f2a7a0;
  --peach-bg:rgba(242,167,160,.18);
  --primary:#da2929;
  --outline:#8ea2ff;

  background: var(--bg);
  color: var(--text);
  padding: 4.5rem 1rem 4rem;
  text-align: center;
}

.cta-wrap{ max-width: 1100px; margin: 0 auto; }

.cta-badge{
  width: 74px; height: 74px; border-radius: 50%;
  display:grid; place-items:center;
  background: var(--peach-bg);
  color: var(--peach);
  font-size: 2.5rem;
  margin: 0 auto 12px;
}

.careers-cta h2{
  font-weight: 800;
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3.1rem);
  margin: .35rem 0 .6rem;
}

.careers-cta p{
  color: var(--muted);
  font-size: clamp(1rem, .9rem + .6vw, 1.25rem);
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 1.4rem;
}

.cta-actions{
  display:flex; flex-wrap:wrap; justify-content:center; gap: 18px;
  margin-top: .4rem;
}

.cta-btn{
  display:inline-flex; align-items:center; gap:10px;
  border-radius: 999px; font-weight: 800; text-decoration:none;
  padding: .95rem 1.6rem; transition: all .18s ease;
}

.cta-btn.primary{
  background: var(--primary); color:#fff; border: 1px solid transparent;
  box-shadow: 0 12px 22px rgba(198,70,59,.25);
}
.cta-btn.primary:hover{
  background:#c30d0d; transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(198,70,59,.32);
}

.cta-btn.outline{
  color: var(--text); background: transparent;
  border: 2px solid var(--outline);
}
.cta-btn.outline:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* keyboard focus */
.cta-btn:focus-visible{
  outline: 3px solid var(--outline);
  outline-offset: 3px;
}

/* small size tighten */
@media (max-width: 480px){
  .cta-btn{ padding: .85rem 1.3rem; }
}


/* ===== Staff Values ===== */
.staff-values{
  padding: 4rem 1rem 3.5rem;
  background:#fff;
}

.sv-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 1.6rem;
}
.sv-head h2{
  color:#1e2d64;
  font-weight:800;
  font-size: clamp(1.9rem, 1.1rem + 3vw, 3.1rem);
  margin-bottom:.5rem;
}
.sv-head p{
  color:#4a5568;
  font-size: clamp(1rem, .9rem + .5vw, 1.25rem);
}

/* grid */
.sv-grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  gap: 28px;
  grid-template-columns: 1fr;
  text-align:center;
}
@media (min-width: 900px){
  .sv-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* card */
.sv-item{
  padding: 10px 12px;
  transition: transform .18s ease;
}
.sv-item:hover{ transform: translateY(-3px); }

/* icon bubble */
.sv-ico{
  width: 92px; height: 92px; border-radius:50%;
  display:grid; place-items:center; margin: 0 auto 12px;
  font-size: 2rem;
}
.sv-ico.red   { background:#fdeaea; color:#c42e2e; }
.sv-ico.blue  { background:#eaf0ff; color:#3a51d6; }
.sv-ico.green { background:#eaf8ef; color:#2f8a4f; }

/* text */
.sv-item h3{
  color:#1e2d64;
  font-weight:800;
  font-size: clamp(1.05rem, .95rem + .7vw, 1.5rem);
  margin: 6px 0 8px;
}
.sv-item p{
  color:#3f4b63;
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 40ch;
  margin: 0 auto;
}

/* mobile tweak */

@media (max-width:560px){
  .sv-ico{
    width: 88px;
    height: 88px;
    font-size: 1.7rem;
  }
}